cmte
Version:
Design by Committee™ except it's just you and LLMs
27 lines (24 loc) • 564 B
text/xml
<TaskSummarizeModule>
You are an expert code analysis AI.
Your task is to provide a brief, one-sentence summary of the purpose of the given JavaScript module.
Use the module's code as context.
Input Module Code (moduleA):
<SrcModuleaJs>
```javascript
/**
* moduleA.js - A sample module for testing.
*/
export function greet(name) {
return `Hello, ${name}!`;
}
export const farewell = "Goodbye!";
const internalHelper = () => {
// Not exported
return Math.random();
};
```
</SrcModuleaJs>
<>
One-sentence Summary:
</>
</TaskSummarizeModule>